Uses of Interface
org.eclipse.vtp.framework.common.IDataObject

Packages that use IDataObject
org.eclipse.vtp.framework.common   
org.eclipse.vtp.framework.common.services   
 

Uses of IDataObject in org.eclipse.vtp.framework.common
 

Subinterfaces of IDataObject in org.eclipse.vtp.framework.common
 interface IArrayObject
          Represents a dynamic sequence of other data objects.
 interface IBooleanObject
          Represents a dynamic true or false value.
 interface IDateObject
          Represents a dynamic date and/or time value.
 interface IDecimalObject
          Represents a dynamic, fixed-point decimal number.
 interface INumberObject
          Represents a dynamic, integer number.
 interface IStringObject
          Represents a dynamic sequence of characters.
 

Methods in org.eclipse.vtp.framework.common that return IDataObject
 IDataObject IVariableRegistry.createVariable(IDataType type)
          Creates a new variable of the specified type.
 IDataObject IVariableRegistry.createVariable(java.lang.String typeName)
          Creates a new variable of the specified type.
 IDataObject IArrayObject.getElement(int index)
          Returns the item at the specified index in this array.
 IDataObject IDataObject.getField(java.lang.String fieldName)
          Returns the value of the specified field.
 IDataObject IVariableRegistry.getVariable(java.lang.String name)
          Returns the variable registered under the specified name or null if no such variable is registered.
 

Methods in org.eclipse.vtp.framework.common with parameters of type IDataObject
 void IArrayObject.addElement(IDataObject item)
          Adds an item to the end of this array.
 void IArrayObject.insertElement(int index, IDataObject item)
          Inserts an item at the specified index in this array.
 void IArrayObject.setElement(int index, IDataObject item)
          Sets the item at the specified index in this array.
 boolean IDataObject.setField(java.lang.String fieldName, IDataObject variable)
          Sets the value of the specified field.
 void IVariableRegistry.setVariable(java.lang.String name, IDataObject variable)
          Registers a variable under the specified name, removing any variable previously registered under that name.
 

Uses of IDataObject in org.eclipse.vtp.framework.common.services
 

Methods in org.eclipse.vtp.framework.common.services that return IDataObject
 IDataObject VariableRegistry.createVariable(IDataType type)
           
 IDataObject VariableRegistry.createVariable(java.lang.String typeName)
           
 IDataObject VariableRegistry.getVariable(java.lang.String name)
           
 

Methods in org.eclipse.vtp.framework.common.services with parameters of type IDataObject
 void VariableRegistry.setVariable(java.lang.String name, IDataObject variable)